home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: MegaDisc / MegaDOS - The Amiga DOS Manual (19xx)(MegaDisc Digital Publishing).zip / MegaDOS - The Amiga DOS Manual (19xx)(MegaDisc Digital Publishing).adf / INTRO_FILES / Single_Drive < prev    next >
Text File  |  1985-11-27  |  7KB  |  139 lines

  1.  
  2.  
  3.             USING A SINGLE DRIVE
  4.  
  5.    ######################################################################
  6.  
  7.     The best way to cure these blues is to go out and buy a second
  8.    disk drive.  The Amiga's Operating System is a powerful brute and gets
  9.    happier the more resources it's got to play with, such as extra drives,
  10.    more internal memory, hard disks, and all the many peripherals that are
  11.    proliferating for this flash machine.  It is certainly crippled when
  12.    operating on a single drive, since it's capable of handling several
  13.    external drives, floppy and hard, RAM disks, and soon CD-ROMS.  But if
  14.    you have to stick with a single drive for a while, then there are
  15.    some simple ways around the problem without becoming an expert in
  16.    AmigaDOS.
  17.  
  18.     DIRECTORY UTILITIES
  19.  
  20.     For want of a better term, vague though it is, these DU's are
  21.    appearing rapidly in the Public Domain and commercially, because they
  22.    are so useful and simple.  The basic idea is a small program (23 kB up)
  23.    which has the simplicity of the WorkBench but the power
  24.    of the CLI - almost.  Double-clicking on its icon brings up a screen
  25.    which usually has half devoted to File listings and the other half
  26.    to "Command buttons".  All you do is click on a file which you want to
  27.    manipulate (copy, rename, move, read, print, etc) and then the
  28.    appropriate button.  The current directory appears in the listing
  29.    window as the "source", and there is a small requestor into which you
  30.    can type the "destination" such as mydisk:myfiles, if it's necessary
  31.    for the particular command.  For example, to print out a file, you'd
  32.    simply click on the filename in the directory listing (it will be
  33.    highlighted), and then click on the PRINT button.  That's all you need
  34.    to do to get a printout.  Likewise READ, or SHOW (to see a graphic).
  35.    Moving through the directories of any disk simply requires clicking
  36.    on any sub-directory, then on GETDIR and the listing of the new
  37.    sub-directory appears in the listing window.  You get the idea.  It
  38.    requires no typing skills, and is quick and powerful.
  39.     There is a number of these Utilities available, but the most
  40.    useful one for single drive users is the one called DUIII, which has
  41.    the advantage of being completely "portable" - ie, it is a self-
  42.    contained program and can be dragged via its icon to any disc without
  43.    any other baggage. (I say this because some of the more sophisticated
  44.    ones require a number of other programs to be transferred with it and
  45.    placed in the   c:  directory of your disk).  This is a Public Domain
  46.    program and can be downloaded from Bulletin Boards round the country,
  47.    or found in a Users Group, or found on the second issue of MegaDisc,
  48.    with explanatory file.  The beauty of it is that you can put it on your
  49.    WorkBench, double-click on it, and then remove your WorkBench and explore
  50.    other disks.  It's like having a small RAM disk with all the commands you
  51.    need.  The only thing it won't do is to run a program - other utilities
  52.    do this, but they access the CLI RUN command to do so, which defeats the
  53.    purpose somewhat.
  54.  
  55.     Another similar program, available commercially, is called CLIMate,
  56.    and it costs you money to do what DUIII will do for nothing.  It does
  57.    the job, but is not so intuitive as DUIII.  However I'm sure some will
  58.    like it.
  59.  
  60.     Anyone requiring one of these Directory Utilities can get a
  61.    collection of them on Megadisc's DU Theme Disk from our PD library; or
  62.    find Mike Hansell's DUTILS program on a recent Megadisc.
  63.  
  64.  
  65.     USING A CLI SHELL  [See also "1.3_Shell" in the 1.3_INFO drawer]
  66.  
  67.     For those who don't mind typing and are reasonably fluent with
  68.    the CLI, there are various "shells", ie, programs which "wrap around"
  69.    the brutal power of the CLI, and tame it and make it easier to use.
  70.    These range from simple to very sophisticated, cheap to expensive.
  71.  
  72.     PUTTING CLI COMMANDS IN RAM  [See also "RAD_Ramdisk" in 1.3_INFO]
  73.  
  74.     If you can't get your hands on either of the two programs above,
  75.    bite the bullet and do it yourself.  Double-click on the CLI icon in
  76.    the SYSTEM drawer of your Workbench (having made sure that you
  77.    "turned on" the CLI in Preferences) and the CLI screen will appear.
  78.    Enter the following commands:
  79.     > copy c/dir to ram:
  80.     > copy c/cd to ram:
  81.     > copy c/type to ram:
  82.     > copy c/run to ram:
  83.     > copy c/xxxx to ram:      where xxxx is any other command you
  84.    may use. Now if, for example, you want to look at a disk called
  85.    Fish74, remove the Workbench, place Fish74 in the drive, and enter
  86.     > ram:cd Fish74:
  87.    which changes the current directory to the "root" directory of Fish74.
  88.    To get a listing of what's on the disk, enter
  89.     > ram:dir
  90.    or   > ram:dir opt a
  91.    for a full listing, including the contents of all sub-directories.
  92.    To change to a subdirectory called "Less", enter
  93.     > ram:cd less
  94.    then > ram:dir
  95.    and you might see a file called  "Less.man", ie, the manual for Less,
  96.    so to read it, enter
  97.     > ram:type less.man
  98.    or to print it out on paper
  99.     > ram:type less.man to prt:
  100.    and so on.  The basic idea is that once the commands are copied into
  101.    RAM they can be used as above.  A simple variation of the above is,
  102.    that rather than referring to all the commands in Ram with the "ram:"
  103.    prefix, you could type in another line:
  104.     > path ram: add
  105.    which would make the system also look into RAM: whenever you use any
  106.    command - see the description of PATH.
  107.    Once you've got used to that you can write a special file called a
  108.    Batch File which you can copy into your Startup-sequence to be executed
  109.    each time you boot up - see the various articles in the BATCH_FILES
  110.    drawer for more information on this subject.
  111.  
  112.  
  113.       OTHER WAYS OF USING THE RAM DISK
  114.  
  115.       You can use the RAM disk on the Workbench too - if you want to copy
  116.    a big file, or a number of files from one disk to another it is often
  117.    speedier to simply drag all the icons you want to copy into the RAM
  118.    DISK window (double-click the icon to open it). Then put in your
  119.    "destination disk", ie the disk you want to copy to, and drag all the
  120.    icons from the Ram disk into the window of your destination disk.
  121.  
  122.       This same technique can be used from the CLI too of course - instead
  123.    of dragging icons, just use the COPY command (see the description) to
  124.    copy all you want into RAM, then change directory to RAM, pop in your
  125.    destination disk, and copy everything across, as follows:
  126.  
  127.    cd df0:directoryname
  128.    copy filename to ram:
  129.    cd ram:              (change disks in df0:)
  130.    copy to df0:Otherdirectory all
  131.  
  132.    and everything will be copied to the directory you specify on your
  133.    destination disk.
  134.  
  135.  
  136.  
  137.    ######################## END OF SINGLE_DRIVE #########################
  138.  
  139.